home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1994 November / macformat-018.iso / Utility Spectacular / Text / Extension Dev. Kit / Extension Sources / Interfaces / DialogUtilities.p < prev    next >
Encoding:
Text File  |  1993-02-09  |  737 b   |  18 lines  |  [TEXT/PJMM]

  1. unit DialogUtilities;
  2. interface
  3.  
  4.     function GetIHandle (d: DialogPtr; item: Integer): Handle;
  5.     procedure SetStrItem (d: DialogPtr; item: Integer; s: Str255);
  6.     procedure ReadStrItem (d: DialogPtr; item: Integer; s: Str255);
  7.     procedure SetDlgCtl (d: DialogPtr; item: Integer; flag: Boolean);
  8.     function GetDlgCtl (d: DialogPtr; item: Integer): Boolean;
  9.     function TestDlgCtl (d: DialogPtr; item: Integer): Boolean;
  10.     procedure XAbleDlgCtl (d: DialogPtr; item: Integer; flag: Boolean);
  11.     procedure SetupUserItem (d: DialogPtr; item: Integer; itemProc: ProcPtr);
  12.  
  13. implementation
  14.  
  15. {    The functions listed above are defined in "DialogUtilities.Lib", which is in turn        }
  16. {    compiled from "DialogUtilities.c", in the "C Interfaces" folder.                        }
  17.  
  18. end.